Add galexie service for local ledger meta store - #870
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request adds galexie service support to quickstart for local network development, enabling developers to generate and test against local meta lakes. Galexie publishes ledger metadata to a filesystem datastore and serves it via nginx at /meta-archive.
Key changes:
- Adds galexie binary built from source in Dockerfile
- Implements galexie service configuration with filesystem datastore
- Enables service with
--enable galexieflag (local network only)
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
| start | Adds galexie environment variable, initialization function, startup logic, validation, and argument processing |
| Dockerfile | Adds galexie builder stage using golang:1.24-trixie and copies binary to quickstart image |
| images.json | Adds galexie dependency from stellar/stellar-galexie repository across all image configurations |
| local/galexie/etc/galexie.toml | Configures galexie with filesystem datastore, admin port, and stellar-core connection |
| common/galexie/bin/start | Provides startup script that executes galexie append command with config |
| local/supervisor/etc/supervisord.conf.d/galexie.conf | Supervisor configuration for galexie service with autostart=false |
| local/supervisor/etc/supervisord.conf.d/meta-archive.conf | Supervisor configuration for meta-archive HTTP server with autostart=true |
| local/nginx/etc/conf.d/meta-archive.conf | Nginx location block to proxy /meta-archive requests to the meta-archive service |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Draft
20 tasks
leighmcculloch
commented
Jan 7, 2026
leighmcculloch
marked this pull request as ready for review
January 7, 2026 04:23
leighmcculloch
commented
Jan 7, 2026
sreuland
reviewed
Jan 8, 2026
tamirms
approved these changes
Jan 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Add galexie as an optional service in quickstart for local networks. Build galexie from source in the Dockerfile, configure it to publish ledger metadata to a filesystem datastore, and serve the meta archive via nginx at /meta-archive. Enable with --enable galexie flag.
Why
Developers building solutions against mainnet meta lakes generated by galexie have no way to test locally with quickstart. This enables local meta lake generation for development and testing workflows.
Close #835
Dependent on:
Todo